Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
string-to-stream
Advanced tools
The string-to-stream npm package allows you to convert strings into readable streams in Node.js. This can be useful for various tasks such as processing large strings in a memory-efficient way, simulating file streams, or piping string data into other stream-based APIs.
Convert String to Readable Stream
This feature allows you to convert a string into a readable stream. In the code sample, the string 'Hello, World!' is converted into a readable stream and then piped to the standard output.
const stringToStream = require('string-to-stream');
const readableStream = stringToStream('Hello, World!');
readableStream.pipe(process.stdout);
Pipe String Data to Writable Stream
This feature demonstrates how to pipe string data into a writable stream, such as a file. The string 'Hello, File!' is converted into a readable stream and then piped into a writable stream that writes to 'output.txt'.
const stringToStream = require('string-to-stream');
const fs = require('fs');
const readableStream = stringToStream('Hello, File!');
const writableStream = fs.createWriteStream('output.txt');
readableStream.pipe(writableStream);
The string-to-readable-stream package provides similar functionality by converting strings into readable streams. It is a lightweight alternative and can be used in the same scenarios as string-to-stream.
The into-stream package allows you to convert various data types, including strings, into readable streams. It offers more flexibility compared to string-to-stream as it supports multiple data types.
The from2-string package is another alternative that creates readable streams from strings. It is part of the from2 family of modules, which are known for their simplicity and ease of use.
npm install string-to-stream
Use string-to-stream
like this:
var str = require('string-to-stream')
str('hi there').pipe(process.stdout) // => 'hi there'
MIT. Copyright (c) Feross Aboukhadijeh.
FAQs
Convert a string into a stream (streams2)
The npm package string-to-stream receives a total of 197,751 weekly downloads. As such, string-to-stream popularity was classified as popular.
We found that string-to-stream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.